home *** CD-ROM | disk | FTP | other *** search
/ More MacCube 1: Arcade Games / More MacCube Vol 1 Arcade Games.bin / Games⁄Arcade / Bolo / More information / Sample Code / Std Autopilot / BF_ResourceIDs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-01  |  695 b   |  38 lines  |  [TEXT/KAHL]

  1. // Bolo code (C) Stuart Cheshire <cheshire@cs.stanford.edu> 1987-1994.
  2. // All rights reserved. This code is owned by Stuart Cheshire and is donated
  3. // free of charge for non-commercial use. You may not use this code in any
  4. // product sold for commercial profit, except shareware priced at $25 or less.
  5.  
  6. // Alerts
  7. enum
  8.     {
  9.     alert_generalerror = 256, alert_systemtoostupid, alert_cannot_print
  10.     };
  11.  
  12. // Dialogs
  13. enum
  14.     {
  15.     dialog_generalmsg = 128, MM_about
  16.     };
  17.  
  18.  
  19. // Menu IDs
  20. enum { appleID = 128, fileID, editID, BF_ID };
  21.  
  22. enum
  23.     {
  24.     fm_open = 1, fm_close,
  25.     fm_sep1, fm_quit
  26.     };
  27.  
  28. enum
  29.     {
  30.     em_undo = 1,
  31.     em_sep1, em_cut, em_copy, em_paste, em_clear
  32.     };
  33.  
  34. enum
  35.     {
  36.     bm_60 = 1, bm_30, bm_20, bm_15, bm_end
  37.     };
  38.